Welcome![Sign In][Sign Up]
Location:
Search - MATLAB reconstruction

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Network DevelopAIR tools-a matlab package of algebraic iterative reconstruction methods

Description: sirt, art, matlab
Platform: | Size: 537348 | Author: 1102776105@qq.com | Hits:

[Wavelet小波分解与重构的几个matlab程序

Description: 用matlab实现小波分解与重构的几个程序的源代码。-using Matlab achieve wavelet decomposition and reconstruction of several programs at the source code.
Platform: | Size: 2048 | Author: yy | Hits:

[matlabCTArt

Description: matlab ART重建算法,该算法可用于CT图像重建或EST图像重建-Matlab ART reconstruction algorithm, which can be used for CT image reconstruction or image reconstruction EST
Platform: | Size: 1024 | Author: weige | Hits:

[Special Effectsmatlab-image-processing

Description: 用matlab对图像进行处理的几个源码,傅立叶变换,重建图像,灰度扩展,多种图像增强,滤波。-using Matlab, the image of several source, Fourier transform, image reconstruction, Gray expansion a variety of image enhancement, filtering.
Platform: | Size: 10240 | Author: 叶芸芸 | Hits:

[Special Effectsfus_segmentmain

Description: 图像分割源程序 通过融合处理,% image segmentation based on multispectral image fusion % and morphology reconstruction watershed % main program -image segmentation source through fusion, % image segmentation based on multispectral im age fusion% and morphology reconstruction wat ershed% main program
Platform: | Size: 1024 | Author: li mingxi | Hits:

[Special Effectsfbp-reconstruction

Description: 基于matlab的滤波反投影重建算法,实现了标准2维图像的重建-based on Matlab filtered back projection reconstruction algorithm, and the standard two-dimensional image reconstruction
Platform: | Size: 5120 | Author: 胡小舟 | Hits:

[OtherMatlab-CT

Description: Matlab重建磨牙CT图像的三维模型的初步研究-Matlab molar CT image reconstruction of three-dimensional model of the preliminary study
Platform: | Size: 594944 | Author: fife | Hits:

[Special EffectsMATLAB

Description: 利用MATLAB进行血管的三维图像重建,充分利用了matlab对大量图片的处理能力-The use of MATLAB to carry out three-dimensional image reconstruction of blood vessels, matlab full advantage of the large number of image processing capability
Platform: | Size: 103424 | Author: fife | Hits:

[matlabstereocameramodel

Description: 三维重建,三维场景建模,立体视觉matlab源码-Three-dimensional reconstruction, three-dimensional scene modeling, stereo vision matlab source
Platform: | Size: 64512 | Author: | Hits:

[matlabbiliner-matlab

Description: 双线性插值的matlab实现,可以用于运动补偿,对处理后的图像进行重建等。-Bilinear interpolation matlab realize that can be used for motion compensation, to deal with the images after reconstruction.
Platform: | Size: 1024 | Author: kevin | Hits:

[matlabvgg_multiview

Description: 多视图几何三维重建程序,经典算法matlab,非常全,对三维重建很有帮助。-Multi-view geometry of three-dimensional reconstruction procedure, the classical algorithm matlab, very wide, very helpful for three-dimensional reconstruction.
Platform: | Size: 31744 | Author: xujing | Hits:

[GDI-Bitmapct-artifacts-simulation-reconstruction

Description: ct图像中由于机械震动引起的条状伪影的计算机仿真与重建-ct images due to vibrations caused by mechanical artifacts strip computer simulation and reconstruction
Platform: | Size: 1024 | Author: Lyf | Hits:

[Special EffectsPOCS-SuperResulution

Description: 用POCS方法对图像进行超分辨率重构,matlab源码,有解释-POCS method using super-resolution reconstruction of images, matlab source code, to explain
Platform: | Size: 7168 | Author: 陈磊 | Hits:

[Graph programSuperResolution+Image+Reconstruction+A+Technical+O

Description: 可以说是图像超分辨率重构中最重要的一篇文章,一篇经典的综述-It can be said that the image super-resolution reconstruction of the most important article, a synthesis of classical
Platform: | Size: 937984 | Author: etcher | Hits:

[matlabcode2

Description: 3D shape reconstruction matlab code. It used shape from defocus technique with divergence. You can reconstruct 3D shape with only two different depth images.
Platform: | Size: 458752 | Author: ask | Hits:

[Compress-Decompress algrithmsWavelet-Image-Compression-Reconstruction

Description: 基于小波分析的图像压缩以其重建,代码很好的实现了这一功能。-Wavelet-based image compression for its reconstruction, to achieve a good code of this function.
Platform: | Size: 36864 | Author: vera | Hits:

[Special EffectsThree-dimensional-reconstruction

Description: 图像三维重建 matlab环境 可用于各种图像-Image three-dimensional reconstruction of the environment can be used for a variety of images matlab
Platform: | Size: 661504 | Author: uneamie | Hits:

[matlab3d-reconstruction

Description: 使用matlab在三维空间中对CT图像进行三维重建-3d reconstruction usingmatlab
Platform: | Size: 7625728 | Author: 伍立芬 | Hits:

[matlabART

Description: ART重建算法,该算法可用于CT图像重建或EST图像重建-Matlab ART reconstruction algorithm, which can be used for CT image reconstruction or image reconstruction EST-matlab reconstruction algorithm, which can be used for CT image reconstruction or image reconstruction EST
Platform: | Size: 1024 | Author: 汤亮 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net